org.eclipse.vtp.framework.common.controller
Interface IIncludeDispatcher

All Superinterfaces:
IDispatcher

public interface IIncludeDispatcher
extends IDispatcher

A dispatcher that suspends the current process, forwards control to another process, and resumes the current process when the target process completes.

Author:
Lonnie Pryor

Method Summary
 void setParameterValue(java.lang.String name, java.lang.String value)
          Configures a parameter set when the current process resumes.
 void setParameterValues(java.lang.String name, java.lang.String[] values)
          Configures a parameter set when the current process resumes.
 
Methods inherited from interface org.eclipse.vtp.framework.common.controller.IDispatcher
enqueue, process
 

Method Detail

setParameterValue

void setParameterValue(java.lang.String name,
                       java.lang.String value)
Configures a parameter set when the current process resumes.

Parameters:
name - The name of the parameter to set.
value - The value to set the parameter to.

setParameterValues

void setParameterValues(java.lang.String name,
                        java.lang.String[] values)
Configures a parameter set when the current process resumes.

Parameters:
name - The name of the parameter to set.
values - The values to set the parameter to.